home *** CD-ROM | disk | FTP | other *** search
- /* FORMLINE.H FormLine is the Line with Carcase
- Coords are TEXT.
- */
-
- #ifndef __FORMLINE_H_
- #define __FORMLINE_H_
-
- #include "line.h"
- #include "carcase.h"
- #include "output.h"
-
- class FormLine : public Carcase, public Line
- {
- protected:
- BORDERS border_type;
- public:
- FormLine(BORDERS b_t) { border_type = b_t; }
- void show(loc xy, int len, char* text = 0, int pat = 0);
- void outtextxy(loc xy, int len, char* text, int pat = 0);
-
- };
-
- #endif __FORMLINE